home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Libs / MCC_Lamp / Developer / C / Include / MUI / Lamp_mcc.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-15  |  1.5 KB  |  59 lines

  1. #ifndef LAMP_MCC_H
  2. #define LAMP_MCC_H
  3.  
  4.  
  5.  
  6. #include <exec/types.h>
  7.  
  8.  
  9. #define MUIC_Lamp  "Lamp.mcc"
  10. #define LampObject MUI_NewObject(MUIC_Lamp
  11.  
  12.  
  13. #define MUIA_Lamp_Type      0x85b90001 /* [ISG]  ULONG                */
  14. #define MUIA_Lamp_Color     0x85b90002 /* [ISG]  ULONG *              */
  15. #define MUIA_Lamp_ColorType 0x85b90003 /* [..G]  ULONG                */
  16. #define MUIA_Lamp_Red       0x85b90004 /* [ISG]  ULONG                */
  17. #define MUIA_Lamp_Green     0x85b90005 /* [ISG]  ULONG                */
  18. #define MUIA_Lamp_Blue      0x85b90006 /* [ISG]  ULONG                */
  19. #define MUIA_Lamp_PenSpec   0x85b90007 /* [ISG]  struct MUI_PenSpec * */
  20.  
  21. #define MUIM_Lamp_SetRGB    0x85b90008
  22.  
  23.  
  24. #define MUIV_Lamp_Type_Tiny   0
  25. #define MUIV_Lamp_Type_Small  1
  26. #define MUIV_Lamp_Type_Medium 2
  27. #define MUIV_Lamp_Type_Big    3
  28. #define MUIV_Lamp_Type_Huge   4
  29.  
  30. #define MUIV_Lamp_ColorType_UserDefined 0
  31. #define MUIV_Lamp_ColorType_Color       1
  32. #define MUIV_Lamp_ColorType_PenSpec     2
  33.  
  34. #define MUIV_Lamp_Color_Off           0
  35. #define MUIV_Lamp_Color_Ok            1
  36. #define MUIV_Lamp_Color_Warning       2
  37. #define MUIV_Lamp_Color_Error         3
  38. #define MUIV_Lamp_Color_FatalError    4
  39. #define MUIV_Lamp_Color_Processing    5
  40. #define MUIV_Lamp_Color_LookingUp     6
  41. #define MUIV_Lamp_Color_Connecting    7
  42. #define MUIV_Lamp_Color_SendingData   8
  43. #define MUIV_Lamp_Color_ReceivingData 9
  44. #define MUIV_Lamp_Color_LoadingData   10
  45. #define MUIV_Lamp_Color_SavingData    11
  46.  
  47.  
  48. struct MUIP_Lamp_SetRGB
  49. {
  50.   ULONG methodid,
  51.         red,
  52.         green,
  53.         blue;
  54. };
  55.  
  56.  
  57.  
  58. #endif   /* LAMP_MCC_H */
  59.